3
How do I change the control's font

public void init()
{
	;

	super();

	exslider1.ThumbSize(32);
	exslider1.Font().Name("Tahoma");
	exslider1.ForeColor(WinApi::RGB2int(255,0,0));
	exslider1.Caption(256/*exThumbPart*/,"thumb");
}
2
How can I change the control's foreground color

public void init()
{
	;

	super();

	exslider1.ForeColor(WinApi::RGB2int(255,0,0));
	exslider1.ThumbSize(32);
	exslider1.Caption(256/*exThumbPart*/,"thumb");
}
1
How can I change the control's background color

public void init()
{
	;

	super();

	exslider1.BackColor(WinApi::RGB2int(0,255,0));
}